
 
 F u n c t i o n :   i s H i d d e n ( d o m E l e m e n t ) 
 
 
 
 D e s c r i p t i o n :   C h e c k s   i f   t h e   s p e c i f i e d   D O M   n o d e   i s   h i d d e n . 
 
 
 
 R e t u r n s :   T r u e   i f   y e s ,   F a l s e   o t h e r w i s e . 
 
 
 
 N o t e :   T h e   i s H i d d e n ( )   f u n c t i o n   w i l l   n o t   d e t e r m i n e   t h a t   o f f s c r e e n   c o n t e n t   i s   h i d d e n .   A   D O M   n o d e   w i l l   o n l y   b e   c o n f i r m e d   a s   h i d d e n   i f   i t ,   o r   o n e   o f   i t s   a n c e s t o r s ,   i n c l u d e s   t h e   h i d d e n   a t t r i b u t e   o r   i s   h i d d e n   u s i n g   C S S   d i s p l a y : n o n e   o r   v i s i b i l i t y : h i d d e n .   S i m i l a r l y ,   t h e   a t t r i b u t e   a r i a - h i d d e n = " t r u e "   w i l l   n o t   b e   c o n f i r m e d   a s   h i d d e n . 
 
 
 
 E x a m p l e : 
 
 
 
 / /   V e r i f y   i f   t h e   s p e c i f i e d   D O M   n o d e   i s   h i d d e n . 
 
 v a r   i s H i d d e n   =   $ A . i s H i d d e n ( d o m E l e m e n t ) ; 
 
 
 
 / /   O r 
 
 
 
 v a r   i s H i d d e n   =   $ A ( d o m E l e m e n t ) . i s H i d d e n ( ) ; 
 
 